home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / keyb / cedwars2.zip / CEDCMD.DOC < prev    next >
Text File  |  1985-11-19  |  4KB  |  112 lines

  1. CED Command Enqueuer v1.0c
  2. --------------------------
  3. A program to create resident DOS commands under Chris Dunford's
  4. CED (Command EDitor) program.  These commands simply print short
  5. one-line text messages.
  6.  
  7. This expands on the USERDEMO program in the CED documentation.
  8. You give it the needed information, and the Enqueuer does the
  9. programming for you.
  10.  
  11. For some reason, people like the power to slip one-liners into
  12. DOS residently.  So do I, but I also like its practical uses.
  13. You can set a BEEP command to Ctrl-G (or several) for use in
  14. batch files.  Or you might use it like an on-line notepad- you
  15. could set the DOMINO command to display the telephone number of
  16. Domino's Pizza.  And it makes use of some of the space in the
  17. often neglected user command buffer.
  18.  
  19.  
  20. Usage:
  21. ------
  22. Start the program by typing CEDCMD at the DOS prompt.  At the
  23. "Command?" prompt type the command that will be used to display
  24. your message.  Capital or lowercase letters are both fine, since
  25. CED ignores capitalization.  At the "Message?" prompt type the
  26. message you have chosen.  Example:
  27.  
  28. A>cedcmd
  29.  
  30. *** CED Command Enqueuer ***
  31.   v1.0c - by Steve Linhart
  32.  
  33. Command? HELLO
  34. Message? Hi there, ace!
  35.  
  36. User command enqueued.
  37.  
  38. A>hello
  39. Hi there, ace!
  40.  
  41. A>
  42.  
  43. Now, whenever someone types the command you have chosen, the
  44. message will be diplayed.
  45.  
  46. You may not include a dollar sign ($) in the message, since the
  47. program uses it to mark where the message ends in memory.  If you
  48. try, the message will only be displayed up to the dollar sign.
  49.  
  50. NOTE: Your input will pass through CED before the Enqueuer gets
  51. hold of it, so:
  52.  
  53. - Any User Synonyms, Parameter Recalls, etc. will have their
  54.   normal effect on the input before the Enqueuer stores it.
  55.  
  56. - A CED command (or something that looks like one) typed at the
  57.   prompts will be executed by CED, and the Enqueuer will store a
  58.   blank message.
  59.  
  60.  
  61. Errors:
  62. -------
  63. CED probably not installed.
  64.  
  65. If CED is not installed, you cannot enqueue anything under it.
  66. Run CED so it can install itself, then try again.
  67.  
  68.  
  69. User command list full.
  70.  
  71. There is no memory left in CED's buffer for user commands.  You
  72. can increase CED's buffer sizes with the -B when you install it.
  73. See the documentation for details.
  74.  
  75.  
  76. Bad command length.
  77.  
  78. The command you tried to enqueue is either too long or blank.
  79. This occurs if you do not enter a command, or if you use the CED
  80. buffer to scroll in a command that is too long.  Commands must be
  81. from 1 to 8 characters in length.
  82.  
  83.  
  84. Sorry! No help available yet!
  85.  
  86. This version of the Enqueuer has a help feature that displays
  87. when "CEDCMD ?" is typed.  However, there is no help available
  88. at the present time.
  89.  
  90.  
  91. Internal error. Notify author.
  92.  
  93. Since there are obviously no errors, this will never display, but
  94. if it does, notify me at the location below.
  95.  
  96.  
  97. Future enhancements:
  98. --------------------
  99. Later versions may introduce dequeuing the commands you make
  100. resident.  As of this first version, you cannot.  Hopefully I
  101. will improve my scanty knowledge of assembly language enough to
  102. allow enqueing in a single command line (for use in batch files),
  103. enable the dormant help parameter, and enqueue the enqueuer
  104. itself under CED.
  105.  
  106. This program is distributed for the non-commercial use of the
  107. public, on the condition that it not be distributed in modified
  108. form.  Address questions, problems, comments, and praise (when
  109. did you last praise a Public Domain author?) to Steven Linhart,
  110. SYSOP of the Cork Board BBS (201)943-2226.
  111. 
  112.